crypto/internal/fips140/hmac.HMAC.opad (field)

9 uses

	crypto/internal/fips140/hmac (current package)
		hmac.go#L34: 	opad, ipad   []byte
		hmac.go#L64: 		if err := h.outer.(marshalable).UnmarshalBinary(h.opad); err != nil {
		hmac.go#L69: 		h.outer.Write(h.opad)
		hmac.go#L121: 	h.outer.Write(h.opad)
		hmac.go#L129: 	h.opad = omarshal
		hmac.go#L187: 	hm.opad = make([]byte, blocksize)
		hmac.go#L194: 	copy(hm.opad, key)
		hmac.go#L198: 	for i := range hm.opad {
		hmac.go#L199: 		hm.opad[i] ^= 0x5c